home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-06-11 | 260 b | 20 lines | [TEXT/CWIE] |
- // Task.cp
-
- #ifndef Task_h
- #include "Task.h"
- #endif
- #ifndef TaskLife_h
- #include "TaskLife.h"
- #endif
-
- void Task::Complete()
- {
- TaskLife *life = this->life;
-
- Assert( life != 0 );
- Assert( life->task == this );
-
- this->life = 0;
- life->QueueCompletor();
- }
-